home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000108_news@columbia.edu_Tue Aug 8 01:59:38 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06911
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 8 Aug 1995 10:37:46 -0400
  3. Received: by apakabar.cc.columbia.edu id AA16837
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 8 Aug 1995 10:37:44 -0400
  5. Path: news.columbia.edu!panix!news.mathworks.com!news.kei.com!nntp.et.byu.edu!news.byu.edu!hamblin.math.byu.edu!park.uvsc.edu!news.provo.novell.com!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Kermit initialization on TCP/IP
  9. Message-Id: <1995Aug8.075939.58350@cc.usu.edu>
  10. Date: 8 Aug 95 07:59:38 MDT
  11. References: <406ud5$am0@harbour.awod.com>
  12. Organization: Utah State University
  13. Lines: 48
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <406ud5$am0@harbour.awod.com>, chilton@awod.com (Carl Hilton) writes:
  17. > I am having a heck of a time getting KERMIT to find my TCP/IP stack.
  18. > On one machine I have FTP's PCTCP v2.1 running on a NOVELL network.  The 
  19. >ODIPKE and ETHDRV are loaded by the network startup batch file.
  20. > Now I want to run KERMIT.  If I just run Kermit I get an 'unable to connect
  21. > find TCP/IP stack or ODI packets'.  I've tried loading the different 
  22.  
  23.  That's not a Kermit error message. Kermit error message
  24.     "Cannot attach to an Ethernet Packet Driver or a Novell ODI driver."
  25. results when it can't find a packet delivery mechanism. If another stack is
  26. running then that will yield this message from Kermit; see below on this
  27. case.
  28.  
  29. (Carl, your mailer creates infinite length lines which don't match 80 column 
  30. equipment elsewhere; please press Enter before approaching the right edge, tnx.)
  31.  
  32. >ODIPKT.COM's that come with Kermit 3.14 but that does not help.  In the 
  33. >NETWORKS/SETUP.DOC they talk about running through FTP's TNGLASS (tnglass 
  34. ><host> <port> -c0 -e KERMIT.EXE)  I've tried this and get dumped to the 
  35. >KERMIT prompt.  Please help.
  36. >
  37.     The Kermit documentation clearly says one can't run two protocol
  38. stacks of the same kind together over the same board. That's the underlying
  39. principle here. FTP Inc's stack counts as one, Kermit's internal stack
  40. counts as one too.
  41.     MSK does run over TNGLASS. SET PORT BIOS<n> is the Kermit command
  42. to use to find the Int 14h support provided by TNGLASS; don't use SET PORT
  43. 1 or COM1 because that tells Kermit to go to the serial port hardware. I
  44. suspect there is a command in your setup to go to the hardware, and if so 
  45. then Kermit.exe command line phrase "-f NUL" is the way to avoid loading 
  46. mskermit.ini and other startup files. Reading the .ini files will reveal
  47. if SET PORT x is present.
  48.  
  49. > On machine 2.  I am running WFW3.11 with MS's TCPIP stack for WFW.  I've 
  50. >tried shelling out to DOS and running WINPKT and even running WINPKT before 
  51. >I launch WFW but I keep getting the same error.
  52.  
  53.     MS' TCP/IP stack isn't for DOS programs.
  54.  
  55. > Can someone plesase help.
  56.  
  57.     What we do on my campus. Use Kermit's internal TCP/IP stack. Load
  58. up ODIPKT + WINPKT before entering Windows. Use Kermit in a window of
  59. Windows (that's Win 3.x and Win95). The one-stack-at-a-time rule still
  60. applies.
  61.         Joe D.